home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 July & August / PCWorld_2006-07-08_cd.bin / komunikace / apache / apache_2[1].2.2-win32-x86-no_ssl.msi / Data1.cab / _475B6D9BBFD5479C7D71AB6FC3FA9789 < prev    next >
Extensible Markup Language  |  2006-01-15  |  9KB  |  162 lines

  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
  4.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  5.               This file is generated from xml source: DO NOT EDIT
  6.         XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  7.       -->
  8. <title>mod_status - Apache HTTP Server</title>
  9. <link href="../style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
  10. <link href="../style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
  11. <link href="../style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" />
  12. <link href="../images/favicon.ico" rel="shortcut icon" /></head>
  13. <body>
  14. <div id="page-header">
  15. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p>
  16. <p class="apache">Apache HTTP Server Version 2.2</p>
  17. <img alt="" src="../images/feather.gif" /></div>
  18. <div class="up"><a href="./"><img title="<-" alt="<-" src="../images/left.gif" /></a></div>
  19. <div id="path">
  20. <a href="http://www.apache.org/">Apache</a> > <a href="http://httpd.apache.org/">HTTP Server</a> > <a href="http://httpd.apache.org/docs/">Documentation</a> > <a href="../">Version 2.2</a> > <a href="./">Modules</a></div>
  21. <div id="page-content">
  22. <div id="preamble"><h1>Apache Module mod_status</h1>
  23. <div class="toplang">
  24. <p><span>Available Languages: </span><a href="../en/mod/mod_status.html" title="English"> en </a> |
  25. <a href="../ja/mod/mod_status.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  26. <a href="../ko/mod/mod_status.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  27. </div>
  28. <table class="module"><tr><th><a href="module-dict.html#Description">Description:</a></th><td>Provides information on server activity and
  29. performance</td></tr>
  30. <tr><th><a href="module-dict.html#Status">Status:</a></th><td>Base</td></tr>
  31. <tr><th><a href="module-dict.html#ModuleIdentifier">ModuleáIdentifier:</a></th><td>status_module</td></tr>
  32. <tr><th><a href="module-dict.html#SourceFile">SourceáFile:</a></th><td>mod_status.c</td></tr></table>
  33. <h3>Summary</h3>
  34.  
  35.     <p>The Status module allows a server administrator to find out
  36.     how well their server is performing. A HTML page is presented
  37.     that gives the current server statistics in an easily readable
  38.     form. If required this page can be made to automatically
  39.     refresh (given a compatible browser). Another page gives a
  40.     simple machine-readable list of the current server state.</p>
  41.  
  42.     <p>The details given are:</p>
  43.  
  44.     <ul>
  45.       <li>The number of worker serving requests</li>
  46.  
  47.       <li>The number of idle worker</li>
  48.  
  49.       <li>The status of each worker, the number of requests that
  50.       worker has performed and the total number of bytes served by
  51.       the worker (*)</li>
  52.  
  53.       <li>A total number of accesses and byte count served (*)</li>
  54.  
  55.       <li>The time the server was started/restarted and the time it
  56.       has been running for</li>
  57.  
  58.       <li>Averages giving the number of requests per second, the
  59.       number of bytes served per second and the average number of
  60.       bytes per request (*)</li>
  61.  
  62.       <li>The current percentage CPU used by each worker and in
  63.       total by Apache (*)</li>
  64.  
  65.       <li>The current hosts and requests being processed (*)</li>
  66.     </ul>
  67.  
  68.     <p>A compile-time option must be used to display the details
  69.     marked "(*)" as the instrumentation required for obtaining
  70.     these statistics does not exist within standard Apache.</p>
  71. </div>
  72. <div id="quickview"><h3 class="directives">Directives</h3>
  73. <ul id="toc">
  74. <li><img alt="" src="../images/down.gif" /> <a href="#extendedstatus">ExtendedStatus</a></li>
  75. </ul>
  76. <h3>Topics</h3>
  77. <ul id="topics">
  78. <li><img alt="" src="../images/down.gif" /> <a href="#enable">Enabling Status Support</a></li>
  79. <li><img alt="" src="../images/down.gif" /> <a href="#autoupdate">Automatic Updates</a></li>
  80. <li><img alt="" src="../images/down.gif" /> <a href="#machinereadable">Machine Readable Status File</a></li>
  81. </ul></div>
  82. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  83. <div class="section">
  84. <h2><a name="enable" id="enable">Enabling Status Support</a></h2>
  85.     
  86.  
  87.     <p>To enable status reports only for browsers from the foo.com
  88.     domain add this code to your <code>httpd.conf</code>
  89.     configuration file</p>
  90. <div class="example"><p><code>
  91.     <Location /server-status><br />
  92.     SetHandler server-status<br />
  93. <br />
  94.     Order Deny,Allow<br />
  95.     Deny from all<br />
  96.     Allow from .foo.com<br />
  97.     </Location>
  98. </code></p></div>
  99.  
  100.     <p>You can now access server statistics by using a Web browser
  101.     to access the page
  102.     <code>http://your.server.name/server-status</code></p>
  103. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  104. <div class="section">
  105. <h2><a name="autoupdate" id="autoupdate">Automatic Updates</a></h2>
  106.  
  107.     
  108.     <p>You can get the status page to update itself automatically if
  109.     you have a browser that supports "refresh". Access the page
  110.     <code>http://your.server.name/server-status?refresh=N</code> to
  111.     refresh the page every N seconds.</p>
  112.  
  113. </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  114. <div class="section">
  115. <h2><a name="machinereadable" id="machinereadable">Machine Readable Status File</a></h2>
  116.  
  117.     
  118.     <p>A machine-readable version of the status file is available by
  119.     accessing the page
  120.     <code>http://your.server.name/server-status?auto</code>. This
  121.     is useful when automatically run, see the Perl program in the
  122.     <code>/support</code> directory of Apache,
  123.     <code>log_server_status</code>.</p>
  124.  
  125.     <div class="note">
  126.       <strong>It should be noted that if <code class="module"><a href="../mod/mod_status.html">mod_status</a></code> is
  127.       compiled into the server, its handler capability is available
  128.       in <em>all</em> configuration files, including
  129.       <em>per</em>-directory files (<em>e.g.</em>,
  130.       <code>.htaccess</code>). This may have security-related
  131.       ramifications for your site.</strong>
  132.     </div>
  133.  
  134. </div>
  135. <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
  136. <div class="directive-section"><h2><a name="ExtendedStatus" id="ExtendedStatus">ExtendedStatus</a> <a name="extendedstatus" id="extendedstatus">Directive</a></h2>
  137. <table class="directive">
  138. <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Keep track of extended status information for each 
  139. request</td></tr>
  140. <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>ExtendedStatus On|Off</code></td></tr>
  141. <tr><th><a href="directive-dict.html#Default">Default:</a></th><td><code>ExtendedStatus Off</code></td></tr>
  142. <tr><th><a href="directive-dict.html#Context">Context:</a></th><td>server config</td></tr>
  143. <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Base</td></tr>
  144. <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_status</td></tr>
  145. <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>ExtendedStatus is only available in Apache 1.3.2 and 
  146. later.</td></tr>
  147. </table>
  148.     <p>This setting applies to the entire server, and cannot be
  149.     enabled or disabled on a virtualhost-by-virtualhost basis.
  150.     The collection of extended status information can slow down
  151.     the server.</p>
  152.  
  153. </div>
  154. </div>
  155. <div class="bottomlang">
  156. <p><span>Available Languages: </span><a href="../en/mod/mod_status.html" title="English"> en </a> |
  157. <a href="../ja/mod/mod_status.html" hreflang="ja" rel="alternate" title="Japanese"> ja </a> |
  158. <a href="../ko/mod/mod_status.html" hreflang="ko" rel="alternate" title="Korean"> ko </a></p>
  159. </div><div id="footer">
  160. <p class="apache">Copyright 1995-2006 The Apache Software Foundation or its licensors, as applicable.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
  161. <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/directives.html">Directives</a> | <a href="../faq/">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div>
  162. </body></html>